home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / lib / tclX-6.4 / help / files / puts < prev    next >
Encoding:
Text File  |  1992-12-17  |  719 b   |  12 lines

  1.           puts fileId string ?nonewline?
  2.                Writes the characters given by string to the file given
  3.                by  fileId.   Puts normally outputs a newline character
  4.                after string, but this feature  may  be  suppressed  by
  5.                specifying  the nonewline argument.  Output to files is
  6.                buffered internally by Tcl; the flush  command  may  be
  7.                used to force buffered characters to be output.  FileId
  8.                must have been the return value from a previous call to
  9.                open,  or it may be stdout or stderr to refer to one of
  10.                the standard I/O channels; it must refer to a file that
  11.                was opened for writing.
  12.